home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / SpriteFight 2002 v2.0a1 / GameUtils.h < prev    next >
Text File  |  1994-02-27  |  705b  |  37 lines

  1. ///--------------------------------------------------------------------------------------
  2. //    GameUtils.h
  3. //
  4. //    By:    Tony Myles
  5. //
  6. //    Copyright: © 1990-94 Tony Myles, All rights reserved worldwide
  7. //
  8. //    Description:    some utility functions for games
  9. ///--------------------------------------------------------------------------------------
  10.  
  11.  
  12. #ifndef __GAMEUTILS__
  13. #define __GAMEUTILS__
  14.  
  15. #ifndef __QUICKDRAW__
  16. #include <QuickDraw.h>
  17. #endif
  18.  
  19.  
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23.  
  24.  
  25. unsigned short GetRandom(unsigned short min, unsigned short max);
  26. void HideMenuBar(GrafPtr grafPort);
  27. void ShowMenuBar(GrafPtr grafPort);
  28. void CenterRect(
  29.     Rect* srcRect,
  30.     Rect* dstRect);
  31.  
  32.  
  33. #ifdef __cplusplus
  34. };
  35. #endif
  36. #endif
  37.